home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form1
- BackColor = &H000080FF&
- Caption = "Shaun's Learning Program"
- ClientHeight = 3195
- ClientLeft = 4140
- ClientTop = 3555
- ClientWidth = 4680
- ForeColor = &H000080FF&
- LinkTopic = "Form1"
- ScaleHeight = 3195
- ScaleWidth = 4680
- WhatsThisHelp = -1 'True
- Begin Project1.UserControl1 UserControl11
- Height = 375
- Left = 240
- TabIndex = 5
- Top = 2640
- Width = 4095
- _ExtentX = 7223
- _ExtentY = 661
- BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
- Name = "MS Sans Serif"
- Size = 12
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- NormTextColor = 0
- HoverTextColor = 255
- URL = "http://www.angelfire.com/me/Shaun101"
- Caption = "http://www.angelfire.com/me/Shaun101"
- End
- Begin VB.Timer Timer1
- Interval = 500
- Left = 1800
- Top = 1560
- End
- Begin VB.CommandButton Command1
- Caption = "Enter Here"
- Height = 375
- Left = 1320
- TabIndex = 2
- Top = 960
- Width = 1815
- End
- Begin VB.TextBox Text1
- Height = 375
- IMEMode = 3 'DISABLE
- Left = 1080
- PasswordChar = "*"
- TabIndex = 0
- Top = 360
- Width = 2295
- End
- Begin VB.Label Label4
- BackColor = &H000080FF&
- Caption = "The Password for everything is ""x"" without the """
- Height = 855
- Left = 3480
- TabIndex = 6
- Top = 600
- Width = 1095
- End
- Begin VB.Label Label3
- BackColor = &H000080FF&
- Caption = "Visit my webpage at:"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 12
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 375
- Left = 1080
- TabIndex = 4
- Top = 2280
- Width = 2175
- End
- Begin VB.Label Label2
- BackColor = &H000080FF&
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 13.5
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 375
- Left = 1320
- TabIndex = 3
- Top = 1560
- Width = 1815
- End
- Begin VB.Label Label1
- BackColor = &H000080FF&
- Caption = " Put Password Here"
- Height = 255
- Left = 1080
- TabIndex = 1
- Top = 120
- Width = 2295
- End
- Begin VB.Menu mnuFile
- Caption = "&File"
- Begin VB.Menu mnuBrowser
- Caption = "Web Browser"
- End
- Begin VB.Menu mnuPassword
- Caption = "Password"
- Shortcut = ^P
- End
- Begin VB.Menu mnuIP
- Caption = "Get IP Address"
- End
- Begin VB.Menu mnuCommand
- Caption = "Command Button Fun"
- End
- Begin VB.Menu mnuSpace
- Caption = "-"
- End
- Begin VB.Menu mnuExit2
- Caption = "Exit2"
- End
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command1_Click()
- If Text1.Text = "x" Then
- MsgBox "Great - password accepted!", 6, "Good Job"
- Unload Form1
- Form2.Show
- MsgBox "Sorry, that's wrong, try again!", 6, "Try Again"
- Text1.SetFocus
- Text1.Text = ""
- End If
- End Sub
- Private Sub mnuExit1_Click()
- End Sub
- Private Sub mnuBrowser_Click()
- Form6.Show
- End Sub
- Private Sub mnuCommand_Click()
- Form8.Show
- End Sub
- Private Sub mnuExit2_Click()
- End Sub
- Private Sub mnuIP_Click()
- Form7.Show
- End Sub
- Private Sub mnuPassword_Click()
- Form4.Show
- End Sub
- Private Sub Timer1_Timer()
- If Label2 <> CStr(Time) Then
- Label2.Caption = Time
- End If
- End Sub
-